1bashThis demonstrates listing all scheduled tasks using the at command.at -lexternal toolsattask scheduling
2bashThis demonstrates inspecting the content of a scheduled task using the at command.at -c 1external toolsattask inspection
3bashThis demonstrates scheduling a one-time task to run in 2 minutes using the at command.at now + 2 minutesexternal toolsatone-time scheduling
4bashThis demonstrates scheduling a one-time task in the future using the at command.at 12:34 PM next monthexternal toolsatone-time task scheduling
5bashThis demonstrates removing a scheduled task with ID 1 using the at command.at -r 1external toolsattask schedulingremove task